All Questions
4 questions
2votes
0answers
136views
Convolutional autoencoder - why keras example is asymmetry model?
I'm looking on keras convolutional autoencoder example, and confused with the model structure: ...
2votes
1answer
840views
Improve Convolutional Autoencoder
I just built a Convolutional Autoencoder to try to reconstruct a time series with shape (4000, 10, 30). This is the code, I used a batch size of 32, but I think it ...
4votes
1answer
4kviews
1D CNN Variational Autoencoder Conv1D Size
I am trying to create a 1D variational autoencoder to take in a 931x1 vector as input, but I have been having trouble with two things: Getting the output size of 931, since maxpooling and upsampling ...
1vote
1answer
2kviews
Autoencoder implementation using ImageDataGenerator
I'm using the concept demonstrated in this paper. Their training data consists of "GOOD" images and "BAD" images. They train the AE using "BAD" images (X) to make it ...